home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 October
/
EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso
/
Aminet
/
gfx
/
show
/
SView460.lha
/
SuperViewEL
/
ARexx-Scripts
/
ConvertFile.rx
next >
Wrap
Text File
|
1995-05-25
|
783b
|
40 lines
/*
$VER: ConvertFile.rx V4.53 (1.4.95)
© 1993-95 by Andreas R. Kleinert
This script demonstrates loading, saving (converting) and
displaying files by using SuperView's ARexxPort.
*/
address command
SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx : SuperView has been started : Waiting three seconds ..."
wait 3
say "ARexx : Loading a GIF Graphics via the LOAD command"
address 'SuperView.rx' "LOAD=/Bonus/SuperView.GIF"
say "ARexx : Saving Graphics as BMP V3.00"
address 'SuperView.rx' "SAVE_TYPE=BMP V3.00"
address 'SuperView.rx' "SAVE=SuperView.bmp"
wait 3
say "ARexx : Load this BMP Gfx now for control"
address 'SuperView.rx' "SHOW=SuperView.bmp"
say "ARexx : O.K. : Let's quit !"
Wait 2
address 'SuperView.rx' "QUIT"
exit